/* ========================================= */
/* LAND ACCORDION SECTION */
/* ========================================= */

/* ========================================= */
/* LAND ACCORDION SECTION */
/* ========================================= */

.land-accordion-section {
  background: #eef2f4;

  padding:
    70px
    20px
    70px;

  width: 100%;

  position: relative;

  overflow: hidden;
}

/* subtle top & bottom separation */

.land-accordion-section::before,
.land-accordion-section::after {
  content: "";

  position: absolute;

  left: 0;

  width: 100%;
  height: 1px;

  background: rgba(0,0,0,0.05);
}

.land-accordion-section::before {
  top: 0;
}

.land-accordion-section::after {
  bottom: 0;
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.land-accordion-container {
  max-width: 760px;

  margin: 0 auto;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.land-accordion-title {
  text-align: center;

  font-size: 35px;
  line-height: 1.15;
  font-weight: 800;

  color: #17233c;

  margin-bottom: 70px;

  letter-spacing: -0.02em;

  animation:
    accordionFadeUp 1s ease forwards;
}

/* ========================================= */
/* ITEM */
/* ========================================= */

.land-accordion-item {
  border-bottom: 1px solid #d9dde2;

  padding: 6px 0;

  transition:
    all 0.3s ease;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.land-accordion-header {
  width: 100%;

  background: transparent;
  border: none;

  padding:
    24px
    0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  cursor: pointer;

  text-align: left;

  transition:
    color 0.25s ease;
}

.land-accordion-header span:first-child {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;

  color: #17233c;

  transition:
    color 0.25s ease;
}

.land-accordion-header:hover span:first-child {
  color: #d40511;
}

/* ========================================= */
/* ICON */
/* ========================================= */

.land-accordion-icon {
  position: relative;

  width: 18px;
  height: 18px;

  flex-shrink: 0;

  transition:
    transform 0.35s ease;
}

/* horizontal line */

.land-accordion-icon::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 100%;
  height: 2px;

  background: #17233c;

  transform:
    translateY(-50%);
}

/* vertical line */

.land-accordion-icon::after {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 2px;
  height: 100%;

  background: #17233c;

  transform:
    translateX(-50%);

  transition:
    opacity 0.3s ease;
}

/* active */

.land-accordion-item.active .land-accordion-icon::after {
  opacity: 0;
}

.land-accordion-item.active .land-accordion-icon {
  transform: rotate(180deg);
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.land-accordion-content {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    padding 0.35s ease;
}

.land-accordion-item.active .land-accordion-content {
  max-height: 400px;

  opacity: 1;

  padding-bottom: 28px;
}

.land-accordion-content p {
  font-size: 16px;
  line-height: 1.9;

  color: #24324a;

  margin: 0;

  padding-right: 40px;
}

/* ========================================= */
/* HOVER EFFECT */
/* ========================================= */

.land-accordion-item:hover {
  border-color: #c9cfd6;
}

/* ========================================= */
/* ANIMATION */
/* ========================================= */

@keyframes accordionFadeUp {

  from {
    opacity: 0;

    transform:
      translateY(35px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}

/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 1024px) {

  .land-accordion-title {
    font-size: 42px;
  }

  .land-accordion-header span:first-child {
    font-size: 25px;
  }

  .land-accordion-content p {
    font-size: 18px;
  }

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {

  .land-accordion-section {
    padding:
      80px
      20px
      90px;
  }

  .land-accordion-title {
    font-size: 34px;

    margin-bottom: 45px;
  }

  .land-accordion-header {
    padding:
      20px
      0;
  }

  .land-accordion-header span:first-child {
    font-size: 20px;
    line-height: 1.45;
  }

  .land-accordion-content p {
    font-size: 16px;
    line-height: 1.8;

    padding-right: 0;
  }

  .land-accordion-item.active .land-accordion-content {
    padding-bottom: 22px;
  }

}

/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 480px) {

  .land-accordion-title {
    font-size: 28px;
  }

  .land-accordion-header span:first-child {
    font-size: 18px;
  }

  .land-accordion-icon {
    width: 16px;
    height: 16px;
  }

}